home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / src / adoc_src.lha / adoc-0.17 / flist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-20  |  1.4 KB  |  51 lines

  1. /*                                                               -*- C -*-
  2.  *  FLIST.H
  3.  *
  4.  *  (c)Copyright 1994 by Tobias Ferber,  All Rights Reserved
  5.  *
  6.  *  This file is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published
  8.  *  by the Free Software Foundation; either version 1 of the License,
  9.  *  or (at your option) any later version.
  10.  *
  11.  *  This file is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; see the file COPYING.  If not, write to
  18.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20.  
  21. /* $VER: $Id: flist.h,v 1.3 1995/03/20 18:15:03 tf Exp $ */
  22.  
  23. #ifndef FLIST_H
  24. #define FLIST_H
  25.  
  26. #include <stdio.h>
  27.  
  28. /* prototypes */
  29.  
  30. #if defined(__cplusplus) || defined(cplusplus)
  31. extern "C" {
  32. #endif
  33.  
  34. extern void flist_dispose(void);
  35. extern int flist_addfile(char *);
  36. extern int flist_from_file(char *);
  37. extern char *flist_getname(void);
  38. extern char *flist_gethost(void);
  39. extern long flist_gethostline(void);
  40. extern int flist_nextfile(void);
  41.  
  42. #ifdef DEBUG
  43. extern void flist_print(FILE *);
  44. #endif /* DEBUG */
  45.  
  46. #if defined(__cplusplus) || defined(cplusplus)
  47. }
  48. #endif
  49.  
  50. #endif /* !FLIST_H */
  51.